Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/152 - Voice Recorder

Readme.md cody/swapnilsparsh/30DaysOfJavaScript/152 - Voice Recorder/Readme.md
168 Views
0 Comments
# Voice Recorder 🎙:
> It's a Voice Recorder made using HTML,CSS,JS , used to record audio from user and save this audio for further usages
---
## Tech Stack:
HTML5,CSS,Javascript


## Screenshot:
style.css cody/swapnilsparsh/30DaysOfJavaScript/152 - Voice Recorder/style.css
103 Views
0 Comments

html{
font-family: cursive;
}
.container {
display: flex;
flex-direction: column;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/152 - Voice Recorder/index.html
313 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Voice Recorder🎙</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/152 - Voice Recorder/script.js
161 Views
0 Comments
class VoiceRecorder {
constructor() {
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
console.log("getUserMedia supported")
} else {
console.log("getUserMedia is not supported on your browser!")
}